/**
 * PKH Online — Tahap 1 Quick Win
 * Global UX fixes: touch targets, select2, active menu, export FAB
 */

/* --- Select2 placeholder fix --- */
.select2-selection__placeholder {
    color: #999 !important;
}

/* --- Active sidebar menu --- */
.pcoded-navbar .pcoded-item > li.active > a,
.pcoded-navbar .pcoded-submenu li.active > a {
    background: rgba(1, 169, 172, 0.12);
    color: #01a9ac;
    font-weight: 600;
}

.pcoded-navbar .pcoded-item > li.active > a .pcoded-micon,
.pcoded-navbar .pcoded-submenu li.active > a {
    color: #01a9ac;
}

/* --- Mobile / tablet touch targets --- */
@media screen and (max-width: 992px) {
    .btn-mini,
    .btn-sm,
    .form-control.btn,
    .card-actions .btn,
    .card-actions a,
    .card-actions button {
        min-height: 44px !important;
        padding: 10px 16px !important;
        font-size: 14px !important;
    }

    .form-control,
    select.form-control,
    input[type="date"].form-control,
    input[type="text"].form-control,
    textarea.form-control {
        font-size: 16px;
    }

    /* PKH Sales: FAB for Kunjungan Tambahan */
    #btnNewcust.btn-block,
    #btnNewcust.btn-pkh-fab {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto !important;
        z-index: 1050;
        border-radius: 50px;
        padding: 12px 20px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        margin-bottom: 0 !important;
    }

    .page-body-pkh {
        padding-bottom: 80px;
    }
}

/* --- Export CSV FAB (reports) --- */
.btn-export-csv-fab {
    display: none;
}

@media screen and (max-width: 992px) {
    .btn-export-csv-desktop {
        display: none !important;
    }

    .btn-export-csv-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        z-index: 1050;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border: none;
        padding: 0;
        font-size: 20px;
        line-height: 1;
    }

    .btn-export-csv-fab i,
    .btn-export-csv-fab .feather {
        font-size: 22px;
    }
}
